home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 September / PCWorld_2002-09_cd.bin / Software / Vyzkuste / httrack / httrack-3.20RC4.exe / {app} / src / htscache.c < prev    next >
C/C++ Source or Header  |  2002-07-08  |  29KB  |  882 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: httrack.c subroutines:                                 */
  34. /*       cache system (index and stores files in cache)         */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. #include "htscache.h"
  39.  
  40. /* specific definitions */
  41. #include "htsbase.h"
  42. #include "htsbasenet.h"
  43. #include "htsmd5.h"
  44. #include <stdio.h>
  45. #include <stdlib.h>
  46. #include <string.h>
  47.  
  48. #include "htsnostatic.h"
  49. /* END specific definitions */
  50.  
  51. #undef test_flush
  52. #define test_flush if (opt->flush) { fflush(opt->log); fflush(opt->errlog); }
  53.  
  54. // routines de mise en cache
  55.  
  56. /*
  57.   VERSION 1.0 :
  58.   -----------
  59.  
  60. .ndx file
  61.  file with data
  62.    <string>(date/time) [ <string>(hostname+filename) (datfile_position_ascii) ] * number_of_links
  63.  file without data
  64.    <string>(date/time) [ <string>(hostname+filename) (-datfile_position_ascii) ] * number_of_links
  65.  
  66. .dat file
  67.  [ file ] * 
  68. with
  69.   file= (with data)
  70.    [ bytes ] * sizeof(htsblk header) [ bytes ] * n(length of file given in htsblk header)
  71.  file= (without data)
  72.    [ bytes ] * sizeof(htsblk header)
  73. with
  74.  <string>(name) = <length in ascii>+<lf>+<data>
  75.  
  76.  
  77.   VERSION 1.1/1.2 :
  78.   ---------------
  79.  
  80. .ndx file
  81.  file with data
  82.    <string>("CACHE-1.1") <string>(date/time) [ <string>(hostname+filename) (datfile_position_ascii) ] * number_of_links
  83.  file without data
  84.    <string>("CACHE-1.1") <string>(date/time) [ <string>(hostname+filename) (-datfile_position_ascii) ] * number_of_links
  85.  
  86. .dat file
  87.    <string>("CACHE-1.1") [ [Header_1.1] [bytes] * n(length of file given in header) ] *
  88. with
  89.  Header_1.1=
  90.    <int>(statuscode)
  91.    <int>(size)
  92.    <string>(msg)
  93.    <string>(contenttype)
  94.    <string>(last-modified)
  95.    <string>(Etag)
  96.    [<string>"SD" <string>(supplemental data)]
  97.    [<string>"SD" <string>(supplemental data)]
  98.    ...
  99.    <string>"HTS" (end of header)
  100.    <int>(number of bytes of data) (0 if no data written)
  101. */
  102.  
  103. // Nouveau: si != text/html ne stocke que la taille
  104.  
  105.  
  106. void cache_mayadd(httrackp* opt,cache_back* cache,htsblk* r,char* url_adr,char* url_fil,char* url_save) {
  107.   if ((opt->debug>0) && (opt->log!=NULL)) {
  108.     fspc(opt->log,"debug"); fprintf(opt->log,"File checked by cache: %s"LF,url_adr);
  109.   }            
  110.   // ---stockage en cache---
  111.   // stocker dans le cache?
  112.   if (opt->cache) {
  113.     if (cache->dat!=NULL) {
  114.       // c'est le seul endroit ou l'on ajoute des elements dans le cache (fichier entier ou header)
  115.       // on stocke tout fichier "ok", mais Θgalement les rΘponses 404,301,302...
  116.       if ((r->statuscode==200)         /* stocker rΘponse standard, plus */
  117.         || (r->statuscode==204)     /* no content */
  118.         || (r->statuscode==301)     /* moved perm */
  119.         || (r->statuscode==302)     /* moved temp */
  120.         || (r->statuscode==303)     /* moved temp */
  121.         || (r->statuscode==307)     /* moved temp */
  122.         || (r->statuscode==401)     /* authorization */
  123.         || (r->statuscode==403)     /* unauthorized */
  124.         || (r->statuscode==404)     /* not found */
  125.         || (r->statuscode==410)     /* gone */
  126.         )
  127.       {        /* ne pas stocker si la page gΘnΘrΘe est une erreur */
  128.         if (!r->is_file) {
  129.           // stocker fichiers (et robots.txt)
  130.           if ( (strnotempty(url_save)) || (strcmp(url_fil,"/robots.txt")==0)) {
  131.             // ajouter le fichier au cache
  132.             cache_add(*r,url_adr,url_fil,url_save,cache->ndx,cache->dat,opt->all_in_cache);
  133.           }
  134.         }
  135.       }
  136.     }
  137.   }
  138.   // ---fin stockage en cache---
  139. }
  140.  
  141.  
  142. /* Ajout d'un fichier en cache */
  143. void cache_add(htsblk r,char* url_adr,char* url_fil,char* url_save,FILE* cache_ndx,FILE* cache_dat,int all_in_cache) {
  144.   int pos;
  145.   char s[256];
  146.   char buff[HTS_URLMAXSIZE*4];
  147.   int ok=1;
  148.   int dataincache=0;    // donnΘe en cache?
  149.   /*char digest[32+2];*/
  150.   /*digest[0]='\0';*/
  151.  
  152.   // Longueur url_save==0?
  153.   if ( (strnotempty(url_save)==0) ) {
  154.     if (strcmp(url_fil,"/robots.txt")==0)        // robots.txt
  155.       dataincache=1;
  156.     else
  157.       return;   // erreur (sauf robots.txt)
  158.   }
  159.  
  160.   if (r.size <= 0)   // taille <= 0 
  161.     return;          // refusΘ..
  162.  
  163.   // Mettre les *donΘes* en cache ?
  164.   if (is_hypertext_mime(r.contenttype))    // html, mise en cache des donnΘes et 
  165.     dataincache=1;                               // pas uniquement de l'en tΩte
  166.   else if (all_in_cache)
  167.     dataincache=1;                               // forcer tout en cache
  168.  
  169.   /* calcul md5 ? */
  170.   /*
  171.   if (is_hypertext_mime(r.contenttype)) {    // html, calcul MD5
  172.     if (r.adr) {
  173.       domd5mem(r.adr,r.size,digest,1,0);
  174.     }
  175.   }*/
  176.  
  177.   // Position
  178.   fflush(cache_dat); fflush(cache_ndx);
  179.   pos=ftell(cache_dat);
  180.   // Θcrire pointeur seek, adresse, fichier
  181.   if (dataincache)   // patcher
  182.     sprintf(s,"%d\n",pos);    // ecrire tel que (eh oui Θvite les \0..)
  183.   else
  184.     sprintf(s,"%d\n",-pos);   // ecrire tel que (eh oui Θvite les \0..)
  185.  
  186.   // data
  187.   // Θcrire donnΘes en-tΩte, donnΘes fichier
  188.   /*if (!dataincache) {   // patcher
  189.     r.size=-r.size;  // nΘgatif
  190.   }*/
  191.  
  192.   // Construction header
  193.   ok=0;
  194.   if (cache_wint(cache_dat,r.statuscode)!=-1)       // statuscode
  195.   if (cache_wLLint(cache_dat,r.size)!=-1)           // size
  196.   if (cache_wstr(cache_dat,r.msg)!=-1)              // msg
  197.   if (cache_wstr(cache_dat,r.contenttype)!=-1)      // contenttype
  198.   if (cache_wstr(cache_dat,r.lastmodified)!=-1)     // last-modified
  199.   if (cache_wstr(cache_dat,r.etag)!=-1)             // Etag
  200.   if (cache_wstr(cache_dat,(r.location!=NULL)?r.location:"")!=-1)         // 'location' pour moved
  201.   if (cache_wstr(cache_dat,r.cdispo)!=-1)           // Content-disposition
  202.   if (cache_wstr(cache_dat,"HTS")!=-1)              // end of header
  203.     ok=1;       /* ok */
  204.   // Fin construction header
  205.  
  206.   /*if ((int) fwrite((char*) &r,1,sizeof(htsblk),cache_dat) == sizeof(htsblk)) {*/
  207.   if (ok) {
  208.     if (dataincache) {    // mise en cache?
  209.       if (!r.adr) {       /* taille nulle (parfois en cas de 301 */
  210.         if (cache_wLLint(cache_dat,0)==-1)          /* 0 bytes */
  211.           ok=0;
  212.       } else if (r.is_write==0) {  // en mΘmoire, recopie directe
  213.         if (cache_wLLint(cache_dat,r.size)!=-1) {
  214.           if (r.size>0) {   // taille>0
  215.             if ((INTsys) fwrite(r.adr,1,(INTsys)r.size,cache_dat)!=r.size)
  216.               ok=0;
  217.           } else    // taille=0, ne rien Θcrire
  218.             ok=0;
  219.         } else
  220.           ok=0;
  221.       } else {  // recopier fichier dans cache
  222.         FILE* fp;
  223.         // On recopie le fichier..
  224.         LLint file_size=fsize(fconv(url_save));
  225.         if (file_size>=0) {
  226.           if (cache_wLLint(cache_dat,file_size)!=-1) {
  227.             fp=fopen(fconv(url_save),"rb");
  228.             if (fp!=NULL) {
  229.               char buff[32768];
  230.               int nl;
  231.               do {
  232.                 nl=fread(buff,1,32768,fp);
  233.                 if (nl>0) { 
  234.                   if ((INTsys) fwrite(buff,1,(INTsys)nl,cache_dat)!=nl) {  // erreur
  235.                     nl=-1;
  236.                     ok=0;
  237.                   }
  238.                 }
  239.               } while(nl>0);
  240.               fclose(fp);
  241.             } else ok=0;
  242.           } else ok=0;
  243.         } else ok=0;
  244.       }
  245.     } else {
  246.       if (cache_wLLint(cache_dat,0)==-1)          /* 0 bytes */
  247.         ok=0;
  248.     }
  249.   } else ok=0;
  250.   /*if (!dataincache) {   // dΘpatcher
  251.     r.size=-r.size;
  252.   }*/
  253.  
  254.   // index
  255.   // adresse+cr+fichier+cr
  256.   if (ok) {
  257.     buff[0]='\0'; strcat(buff,url_adr); strcat(buff,"\n"); strcat(buff,url_fil); strcat(buff,"\n");
  258.     cache_wstr(cache_ndx,buff);
  259.     fwrite(s,1,strlen(s),cache_ndx);
  260.   }  // si ok=0 on a peut Ωtre Θcrit des donnΘes pour rien mais on s'en tape
  261.   
  262.   // en cas de plantage, on aura au moins le cache!
  263.   fflush(cache_dat); fflush(cache_ndx);
  264. }
  265.  
  266.  
  267. // lecture d'un fichier dans le cache
  268. // si save==null alors test unqiquement
  269. htsblk cache_read(httrackp* opt,cache_back* cache,char* adr,char* fil,char* save) {
  270. #if HTS_FAST_CACHE
  271.   long int hash_pos;
  272.   int hash_pos_return;
  273. #else
  274.   char* a;
  275. #endif
  276.   char buff[HTS_URLMAXSIZE*2];
  277.   char location[HTS_URLMAXSIZE*2];
  278.   htsblk r;
  279.   int ok=0;
  280.   int header_only=0;
  281.  
  282.   memset(&r, 0, sizeof(htsblk)); r.soc=INVALID_SOCKET; strcpy(location,""); r.location=location;
  283. #if HTS_FAST_CACHE
  284.   strcpy(buff,adr); strcat(buff,fil);
  285.   hash_pos_return=inthash_read((inthash)cache->hashtable,buff,(long int*)&hash_pos);
  286. #else
  287.   buff[0]='\0'; strcat(buff,"\n"); strcat(buff,adr); strcat(buff,"\n"); strcat(buff,fil); strcat(buff,"\n");
  288.   if (cache->use)
  289.     a=strstr(cache->use,buff);
  290.   else
  291.     a=NULL;       // forcer erreur
  292. #endif
  293.  
  294.   // en cas de succΦs
  295. #if HTS_FAST_CACHE
  296.   if (hash_pos_return) {
  297. #else
  298.   if (a!=NULL) {  // OK existe en cache!
  299. #endif
  300.     int pos;
  301. #if DEBUGCA
  302.     fprintf(stdout,"..cache: %s%s at ",adr,fil);
  303. #endif
  304.     
  305. #if HTS_FAST_CACHE
  306.     pos=hash_pos;     /* simply */
  307. #else
  308.     a+=strlen(buff);
  309.     sscanf(a,"%d",&pos);    // lire position
  310. #endif
  311. #if DEBUGCA
  312.     printf("%d\n",pos);
  313. #endif
  314.  
  315.     fflush(cache->olddat); 
  316.     if (fseek(cache->olddat,((pos>0)?pos:(-pos)),SEEK_SET) == 0) {
  317.       /* Importer cache1.0 */
  318.       if (cache->version==0) {
  319.         OLD_htsblk old_r;
  320.         if (fread((char*) &old_r,1,sizeof(old_r),cache->olddat)==sizeof(old_r)) { // lire tout (y compris statuscode etc)
  321.           r.statuscode=old_r.statuscode;
  322.           r.size=old_r.size;        // taille fichier
  323.           strcpy(r.msg,old_r.msg);
  324.           strcpy(r.contenttype,old_r.contenttype);
  325.           ok=1;     /* import  ok */
  326.         }
  327.       /* */
  328.       /* Cache 1.1 */
  329.       } else {
  330.         char check[256];
  331.         LLint size_read;
  332.         check[0]='\0';
  333.         //
  334.         cache_rint(cache->olddat,&r.statuscode);
  335.         cache_rLLint(cache->olddat,&r.size);
  336.         cache_rstr(cache->olddat,r.msg);
  337.         cache_rstr(cache->olddat,r.contenttype);
  338.         cache_rstr(cache->olddat,r.lastmodified);
  339.         cache_rstr(cache->olddat,r.etag);
  340.         cache_rstr(cache->olddat,r.location);
  341.         if (cache->version >= 2)
  342.           cache_rstr(cache->olddat,r.cdispo);
  343.         //
  344.         cache_rstr(cache->olddat,check);
  345.         if (strcmp(check,"HTS")==0) {           /* intΘgritΘ OK */
  346.           ok=1;
  347.         }
  348.         cache_rLLint(cache->olddat,&size_read);       /* lire size pour Ωtre s√r de la taille dΘclarΘe (rΘΘcrire) */
  349.         if (size_read>0) {                         /* si inscrite ici */
  350.           r.size=size_read;
  351.         } else {                              /* pas de donnΘes directement dans le cache, fichier prΘsent? */
  352.           if (r.statuscode!=200)
  353.             header_only=1;          /* que l'en tΩte ici! */
  354.         }
  355.       }
  356.  
  357.       /* Remplir certains champs */
  358.       r.totalsize=r.size;
  359.  
  360.       // lecture du header (y compris le statuscode)
  361.       /*if (fread((char*) &r,1,sizeof(htsblk),cache->olddat)==sizeof(htsblk)) { // lire tout (y compris statuscode etc)*/
  362.       if (ok) {
  363.         // sΘcuritΘ
  364.         r.adr=NULL;
  365.         r.out=NULL;
  366.         ////r.location=NULL;  non, fixΘe lors des 301 ou 302
  367.         r.fp=NULL;
  368.         
  369.         if ( (r.statuscode>=0) && (r.statuscode<=999)
  370.           && (r.notmodified>=0)  && (r.notmodified<=9) ) {   // petite vΘrif intΘgritΘ
  371.           if ((save) && (!header_only) ) {     /* ne pas lire uniquement header */
  372.             //int to_file=0;
  373.             
  374.             r.adr=NULL; r.soc=INVALID_SOCKET; 
  375.             // // r.location=NULL;
  376.             
  377. #if HTS_DIRECTDISK
  378.             // Court-circuit:
  379.             // Peut-on stocker le fichier directement sur disque?
  380.             if ((r.statuscode==200) && (!is_hypertext_mime(r.contenttype)) && (strnotempty(save))) {    // pas HTML, Θcrire sur disk directement
  381.               int ok=0;
  382.               
  383.               r.is_write=1;    // Θcrire
  384.               if (fexist(antislash(save))) {  // un fichier existe dΘja
  385.                 //if (fsize(antislash(save))==r.size) {  // mΩme taille -- NON tant pis (taille mal declaree)
  386.                 ok=1;    // plus rien α faire
  387.                 filenote(save,NULL);        // noter comme connu
  388.                 //}
  389.               }
  390.               
  391.               if ((pos<0) && (!ok)) { // Pas de donnΘe en cache et fichier introuvable : erreur!
  392.                 if (opt->norecatch) {
  393.                   filecreateempty(save);
  394.                   //
  395.                   r.statuscode=-1;
  396.                   strcpy(r.msg,"File deleted by user not recaught");
  397.                   ok=1;     // ne pas rΘcupΘrer (et pas d'erreur)
  398.                 } else {
  399.                   r.statuscode=-1;
  400.                   strcpy(r.msg,"Previous cache file not found");
  401.                   ok=1;    // ne pas rΘcupΘrer
  402.                 }
  403.               }
  404.               
  405.               if (!ok) {  
  406.                 r.out=filecreate(save);
  407. #if HDEBUG
  408.                 printf("direct-disk: %s\n",save);
  409. #endif
  410.                 if (r.out!=NULL) {
  411.                   char buff[32768+4];
  412.                   LLint nl;
  413.                   LLint size;
  414.                   size=r.size;
  415.                   do {
  416.                     nl=fread(buff,1,(INTsys) minimum(size,32768),cache->olddat);
  417.                     if (nl>0) {
  418.                       size-=nl; 
  419.                       if ((INTsys) fwrite(buff,1,(INTsys)nl,r.out)!=nl) {  // erreur
  420.                         r.statuscode=-1;
  421.                         strcpy(r.msg,"Cache Read Error : Read To Disk");
  422.                       }
  423.                     }
  424.                   } while((nl>0) && (size>0) && (r.statuscode!=-1));
  425.                   
  426.                   fclose(r.out);
  427.                   r.out=NULL;
  428. #if HTS_WIN==0
  429.                   chmod(save,HTS_ACCESS_FILE);      
  430. #endif          
  431.                   usercommand(0,NULL,antislash(save));
  432.                 } else {
  433.                   r.statuscode=-1;
  434.                   strcpy(r.msg,"Cache Write Error : Unable to Create File");
  435.                   //printf("%s\n",save);
  436.                 }
  437.               }
  438.               
  439.             } else
  440. #endif
  441.             { // lire en mΘmoire
  442.               
  443.               if (pos<0) { // Pas de donnΘe en cache, bizarre car html!!!
  444.                 r.statuscode=-1;
  445.                 strcpy(r.msg,"Previous cache file not found (2)");
  446.               } else {
  447.                 // lire fichier (d'un coup)
  448.                 r.adr=(char*) malloct((INTsys)r.size+4);
  449.                 if (r.adr!=NULL) {
  450.                   if ((INTsys) fread(r.adr,1,(INTsys)r.size,cache->olddat)!=r.size) {  // erreur
  451.                     freet(r.adr);
  452.                     r.adr=NULL;
  453.                     r.statuscode=-1;
  454.                     strcpy(r.msg,"Cache Read Error : Read Data");
  455.                   } else
  456.                     *(r.adr+r.size)='\0';
  457.                   //printf(">%s status %d\n",back[p].r.contenttype,back[p].r.statuscode);
  458.                 } else {  // erreur
  459.                   r.statuscode=-1;
  460.                   strcpy(r.msg,"Cache Memory Error");
  461.                 }
  462.               }
  463.             }
  464.           }    // si save==null, ne rien charger (juste en tΩte)
  465.         } else {
  466. #if DEBUGCA
  467.           printf("Cache Read Error : Bad Data");
  468. #endif
  469.           r.statuscode=-1;
  470.           strcpy(r.msg,"Cache Read Error : Bad Data");
  471.         }
  472.       } else {  // erreur
  473. #if DEBUGCA
  474.         printf("Cache Read Error : Read Header");
  475. #endif
  476.         r.statuscode=-1;
  477.         strcpy(r.msg,"Cache Read Error : Read Header");
  478.       }
  479.     } else {
  480. #if DEBUGCA
  481.       printf("Cache Read Error : Seek Failed");
  482. #endif
  483.       r.statuscode=-1;
  484.       strcpy(r.msg,"Cache Read Error : Seek Failed");
  485.     }
  486.   } else {
  487. #if DEBUGCA
  488.     printf("File Cache Not Found");
  489. #endif
  490.     r.statuscode=-1;
  491.     strcpy(r.msg,"File Cache Not Found");
  492.   }
  493.   return r;
  494. }
  495.  
  496. /* write (string1-string2)-data in cache */
  497. /* 0 if failed */
  498. int cache_writedata(FILE* cache_ndx,FILE* cache_dat,char* str1,char* str2,char* outbuff,int len) {
  499.   if (cache_dat) {
  500.     char buff[HTS_URLMAXSIZE*4];
  501.     char s[256];
  502.     int pos;
  503.     fflush(cache_dat); fflush(cache_ndx);
  504.     pos=ftell(cache_dat);
  505.     /* first write data */
  506.     if (cache_wint(cache_dat,len)!=-1) {       // length
  507.       if ((INTsys) fwrite(outbuff,1,(INTsys)len,cache_dat) == (INTsys) len) {   // data
  508.         /* then write index */
  509.         sprintf(s,"%d\n",pos);
  510.         buff[0]='\0'; strcat(buff,str1); strcat(buff,"\n"); strcat(buff,str2); strcat(buff,"\n");
  511.         cache_wstr(cache_ndx,buff);
  512.         if (fwrite(s,1,strlen(s),cache_ndx) == strlen(s)) {
  513.           fflush(cache_dat); fflush(cache_ndx);
  514.           return 1;
  515.         }
  516.       }
  517.     }
  518.   }
  519.   return 0;
  520. }
  521.  
  522. /* read the data corresponding to (string1-string2) in cache */
  523. /* 0 if failed */
  524. int cache_readdata(cache_back* cache,char* str1,char* str2,char** inbuff,int* inlen) {
  525. #if HTS_FAST_CACHE
  526.   if (cache->hashtable) {
  527.     char buff[HTS_URLMAXSIZE*4];
  528.     long int pos;
  529.     strcpy(buff,str1); strcat(buff,str2);
  530.     if (inthash_read((inthash)cache->hashtable,buff,(long int*)&pos)) {
  531.       if (fseek(cache->olddat,((pos>0)?pos:(-pos)),SEEK_SET) == 0) {
  532.         int len;
  533.         cache_rint(cache->olddat,&len);
  534.         if (len>0) {
  535.           char* mem_buff=(char*)malloct(len+4);    /* Plus byte 0 */
  536.           if (mem_buff) {
  537.             if ((int)fread(mem_buff,1,len,cache->olddat)==len) { // lire tout (y compris statuscode etc)*/
  538.               *inbuff=mem_buff;
  539.               *inlen=len;
  540.               return 1;
  541.             } else
  542.               freet(mem_buff);
  543.           }
  544.         }
  545.       }
  546.     }
  547.   }
  548. #endif
  549.   *inbuff=NULL;
  550.   *inlen=0;
  551.   return 0;
  552. }
  553.  
  554. // renvoyer uniquement en tΩte, ou NULL si erreur
  555. htsblk* cache_header(httrackp* opt,cache_back* cache,char* adr,char* fil) {
  556.   htsblk* r;
  557.   NOSTATIC_RESERVE(r, htsblk, 1);
  558.   *r=cache_read(opt,cache,adr,fil,NULL);              // test uniquement
  559.   if (r->statuscode != -1)
  560.     return r;
  561.   else
  562.     return NULL;
  563. }
  564.  
  565.           
  566. // Initialisation du cache: crΘer nouveau, renomer ancien, charger..
  567. void cache_init(cache_back* cache,httrackp* opt) {
  568.   // ---
  569.   // utilisation du cache: renommer ancien Θventuel et charger index
  570.   if (opt->cache) {
  571. #if DEBUGCA
  572.     printf("cache init: ");
  573. #endif
  574. #if HTS_WIN
  575.     mkdir(fconcat(opt->path_log,"hts-cache"));
  576. #else
  577.     mkdir(fconcat(opt->path_log,"hts-cache"),HTS_PROTECT_FOLDER);
  578. #endif
  579.     if ((fexist(fconcat(opt->path_log,"hts-cache/new.dat"))) && (fexist(fconcat(opt->path_log,"hts-cache/new.ndx")))) {  // il existe dΘja un cache prΘcΘdent.. renommer
  580. #if DEBUGCA
  581.       printf("work with former cache\n");
  582. #endif
  583.       if (fexist(fconcat(opt->path_log,"hts-cache/old.dat")))
  584.         remove(fconcat(opt->path_log,"hts-cache/old.dat"));
  585.       if (fexist(fconcat(opt->path_log,"hts-cache/old.ndx")))
  586.         remove(fconcat(opt->path_log,"hts-cache/old.ndx"));
  587.       
  588.       rename(fconcat(opt->path_log,"hts-cache/new.dat"),fconcat(opt->path_log,"hts-cache/old.dat"));
  589.       rename(fconcat(opt->path_log,"hts-cache/new.ndx"),fconcat(opt->path_log,"hts-cache/old.ndx"));
  590.     } else {  // un des deux (ou les deux) fichiers cache absents: effacer l'autre Θventuel
  591. #if DEBUGCA
  592.       printf("new cache\n");
  593. #endif
  594.       if (fexist(fconcat(opt->path_log,"hts-cache/new.dat")))
  595.         remove(fconcat(opt->path_log,"hts-cache/new.dat"));
  596.       if (fexist(fconcat(opt->path_log,"hts-cache/new.ndx")))
  597.         remove(fconcat(opt->path_log,"hts-cache/new.ndx"));
  598.     }
  599.     
  600.     // charger index cache prΘcΘdent
  601.     if ((fexist(fconcat(opt->path_log,"hts-cache/old.dat"))) && (fexist(fconcat(opt->path_log,"hts-cache/old.ndx")))) {  // cache prΘcΘdent
  602.       if ((fsize(fconcat(opt->path_log,"hts-cache/old.dat"))>=0) && (fsize(fconcat(opt->path_log,"hts-cache/old.ndx"))>0)) {
  603.         FILE* oldndx=NULL;
  604. #if DEBUGCA
  605.         printf("..load cache\n");
  606. #endif
  607.         cache->olddat=fopen(fconcat(opt->path_log,"hts-cache/old.dat"),"rb");        
  608.         oldndx=fopen(fconcat(opt->path_log,"hts-cache/old.ndx"),"rb");        
  609.         // les deux doivent Ωtre ouvrables
  610.         if ((cache->olddat==NULL) && (oldndx!=NULL)) {
  611.           fclose(oldndx);
  612.           oldndx=NULL;
  613.         }
  614.         if ((cache->olddat!=NULL) && (oldndx==NULL)) {
  615.           fclose(cache->olddat);
  616.           cache->olddat=NULL;
  617.         }
  618.         // lire index
  619.         if (oldndx!=NULL) {
  620.           int buffl;
  621.           fclose(oldndx); oldndx=NULL;
  622.           // lire ndx, et lastmodified
  623.           buffl=fsize(fconcat(opt->path_log,"hts-cache/old.ndx"));
  624.           cache->use=readfile(fconcat(opt->path_log,"hts-cache/old.ndx"));
  625.           if (cache->use!=NULL) {
  626.             char firstline[256];
  627.             char* a=cache->use;
  628.             a+=cache_brstr(a,firstline);
  629.             if (strncmp(firstline,"CACHE-",6)==0) {       // Nouvelle version du cache
  630.               if (strncmp(firstline,"CACHE-1.",8)==0) {      // Version 1.1x
  631.                 cache->version=(int)(firstline[8]-'0');           // cache 1.x
  632.                 if (cache->version <= 2) {
  633.                   a+=cache_brstr(a,firstline);
  634.                   strcpy(cache->lastmodified,firstline);
  635.                 } else {
  636.                   if (opt->errlog) {
  637.                     fspc(opt->errlog,"error"); fprintf(opt->errlog,"Cache: version 1.%d not supported, ignoring current cache"LF,cache->version);
  638.                     fflush(opt->errlog);
  639.                   }
  640.                   fclose(cache->olddat);
  641.                   cache->olddat=NULL;
  642.                   freet(cache->use);
  643.                   cache->use=NULL;
  644.                 }
  645.               } else {        // non supportΘ
  646.                 if (opt->errlog) {
  647.                   fspc(opt->errlog,"error"); fprintf(opt->errlog,"Cache: %s not supported, ignoring current cache"LF,firstline);
  648.                   fflush(opt->errlog);
  649.                 }
  650.                 fclose(cache->olddat);
  651.                 cache->olddat=NULL;
  652.                 freet(cache->use);
  653.                 cache->use=NULL;
  654.               }
  655.               /* */
  656.             } else {              // Vieille version du cache
  657.               /* */
  658.               if (opt->log) {
  659.                 fspc(opt->log,"warning"); fprintf(opt->log,"Cache: importing old cache format"LF);
  660.                 fflush(opt->log);
  661.               }
  662.               cache->version=0;        // cache 1.0
  663.               strcpy(cache->lastmodified,firstline); 
  664.             }
  665.             opt->is_update=1;        // signaler comme update
  666.  
  667.             /* Create hash table for the cache (MUCH FASTER!) */
  668. #if HTS_FAST_CACHE
  669.             if (cache->use) {
  670.               char line[HTS_URLMAXSIZE*2];
  671.               char linepos[256];
  672.               int  pos;
  673.               while ( (a!=NULL) && (a < (cache->use+buffl) ) ) {
  674.                 a=strchr(a+1,'\n');     /* start of line */
  675.                 if (a) {
  676.                   a++;
  677.                   /* read "host/file" */
  678.                   a+=binput(a,line,HTS_URLMAXSIZE);
  679.                   a+=binput(a,line+strlen(line),HTS_URLMAXSIZE);
  680.                   /* read position */
  681.                   a+=binput(a,linepos,200);
  682.                   sscanf(linepos,"%d",&pos);
  683.                   inthash_add((inthash)cache->hashtable,line,pos);
  684.                 }
  685.               }
  686.               /* Not needed anymore! */
  687.               freet(cache->use);
  688.               cache->use=NULL;
  689.             }
  690. #endif
  691.           }
  692.         }
  693.       }  // taille cache>0
  694.     }  // cache precedent existe
  695.     
  696. #if DEBUGCA
  697.     printf("..create cache\n");
  698. #endif
  699.     // ouvrir caches actuels
  700.     cache->dat=fopen(fconcat(opt->path_log,"hts-cache/new.dat"),"wb");        
  701.     cache->ndx=fopen(fconcat(opt->path_log,"hts-cache/new.ndx"),"wb");        
  702.     // les deux doivent Ωtre ouvrables
  703.     if ((cache->dat==NULL) && (cache->ndx!=NULL)) {
  704.       fclose(cache->ndx);
  705.       cache->ndx=NULL;
  706.     }
  707.     if ((cache->dat!=NULL) && (cache->ndx==NULL)) {
  708.       fclose(cache->dat);
  709.       cache->dat=NULL;
  710.     }
  711.     
  712.     if (cache->ndx!=NULL) {
  713.       char s[256];
  714.       
  715.       cache_wstr(cache->dat,"CACHE-1.2");
  716.       fflush(cache->dat);
  717.       cache_wstr(cache->ndx,"CACHE-1.2");
  718.       fflush(cache->ndx);
  719.       //
  720.       time_gmt_rfc822(s);   // date et heure actuelle GMT pour If-Modified-Since..
  721.       cache_wstr(cache->ndx,s);        
  722.       fflush(cache->ndx);    // un petit fflush au cas o∙
  723.       
  724.       // supprimer old.lst
  725.       if (fexist(fconcat(opt->path_log,"hts-cache/old.lst")))
  726.         remove(fconcat(opt->path_log,"hts-cache/old.lst"));
  727.       // renommer
  728.       if (fexist(fconcat(opt->path_log,"hts-cache/new.lst")))
  729.         rename(fconcat(opt->path_log,"hts-cache/new.lst"),fconcat(opt->path_log,"hts-cache/old.lst"));
  730.       // ouvrir
  731.       cache->lst=fopen(fconcat(opt->path_log,"hts-cache/new.lst"),"wb");
  732.       {
  733.         filecreate_params tmp;
  734.         strcpy(tmp.path,opt->path_html);    // chemin
  735.         tmp.lst=cache->lst;                 // fichier lst
  736.         filenote("",&tmp);        // initialiser filecreate
  737.       }
  738.  
  739.       // supprimer old.txt
  740.       if (fexist(fconcat(opt->path_log,"hts-cache/old.txt")))
  741.         remove(fconcat(opt->path_log,"hts-cache/old.txt"));
  742.       // renommer
  743.       if (fexist(fconcat(opt->path_log,"hts-cache/new.txt")))
  744.         rename(fconcat(opt->path_log,"hts-cache/new.txt"),fconcat(opt->path_log,"hts-cache/old.txt"));
  745.       // ouvrir
  746.       cache->txt=fopen(fconcat(opt->path_log,"hts-cache/new.txt"),"wb");
  747.       if (cache->txt) {
  748.         fprintf(cache->txt,"date\tsize'/'remotesize\tflags(request:Update,Range state:File response:Modified,Chunked,gZipped)\t");
  749.         fprintf(cache->txt,"statuscode\tstatus ('servermsg')\tMIME\tEtag|Date\tURL\tlocalfile\t(from URL)"LF);
  750.       }
  751.  
  752.       // test
  753.       // cache_writedata(cache->ndx,cache->dat,"//[TEST]//","test1","TEST PIPO",9);
  754.     }
  755.     
  756.   }
  757.   
  758. }
  759.   
  760.   
  761.   
  762.  
  763. // lire un fichier.. (compatible \0)
  764. char* readfile(char* fil) {
  765.   char* adr=NULL;
  766.   int len=0;
  767.   len=fsize(fil);
  768.   if (len>0) {  // existe
  769.     FILE* fp;
  770.     fp=fopen(fconv(fil),"rb");
  771.     if (fp!=NULL) {  // n'existe pas (!)
  772.       adr=(char*) malloct(len+1);
  773.       if (adr!=NULL) {
  774.         if ((int) fread(adr,1,len,fp)!=len) {    // fichier endommagΘ ?
  775.           freet(adr);
  776.           adr=NULL;
  777.         } else
  778.           *(adr+len)='\0';
  779.       }
  780.       fclose(fp);
  781.     }
  782.   }
  783.   return adr;
  784. }
  785.  
  786. char* readfile_or(char* fil,char* defaultdata) {
  787.   char* realfile=fil;
  788.   char* ret;
  789.   if (!fexist(fil))
  790.     realfile=fconcat(hts_rootdir(NULL),fil);
  791.   ret=readfile(realfile);
  792.   if (ret)
  793.     return ret;
  794.   else {
  795.     char *adr=malloct(strlen(defaultdata)+2);
  796.     if (adr) {
  797.       strcpy(adr,defaultdata);
  798.       return adr;
  799.     }
  800.   }
  801.   return NULL;
  802. }
  803.  
  804. // Θcriture/lecture d'une chaεne sur un fichier
  805. // -1 : erreur, sinon 0
  806. int cache_wstr(FILE* fp,char* s) {
  807.   int i;
  808.   char buff[256+4];
  809.   i=strlen(s);
  810.   sprintf(buff,"%d\n",i);
  811.   if (fwrite(buff,1,strlen(buff),fp) != strlen(buff))
  812.     return -1;
  813.   if (i>0)
  814.   if ((int) fwrite(s,1,i,fp) != i)
  815.     return -1;
  816.   return 0;
  817. }
  818. void cache_rstr(FILE* fp,char* s) {
  819.   int i;
  820.   char buff[256+4];
  821.   linput(fp,buff,256);
  822.   sscanf(buff,"%d",&i);
  823.   if (i>0)
  824.     fread(s,1,i,fp);
  825.   *(s+i)='\0';
  826. }
  827. int cache_brstr(char* adr,char* s) {
  828.   int i;
  829.   int off;
  830.   char buff[256+4];
  831.   off=binput(adr,buff,256);
  832.   adr+=off;
  833.   sscanf(buff,"%d",&i);
  834.   if (i>0)
  835.     strncpy(s,adr,i);
  836.   *(s+i)='\0';
  837.   off+=i;
  838.   return off;
  839. }
  840. int cache_quickbrstr(char* adr,char* s) {
  841.   int i;
  842.   int off;
  843.   char buff[256+4];
  844.   off=binput(adr,buff,256);
  845.   adr+=off;
  846.   sscanf(buff,"%d",&i);
  847.   if (i>0)
  848.     strncpy(s,adr,i);
  849.   *(s+i)='\0';
  850.   off+=i;
  851.   return off;
  852. }
  853. /* idem, mais en int */
  854. int cache_brint(char* adr,int* i) {
  855.   char s[256];
  856.   int r=cache_brstr(adr,s);
  857.   if (r!=-1)
  858.     sscanf(s,"%d",i);
  859.   return r;
  860. }
  861. void cache_rint(FILE* fp,int* i) {
  862.   char s[256];
  863.   cache_rstr(fp,s);
  864.   sscanf(s,"%d",i);
  865. }
  866. int cache_wint(FILE* fp,int i) {
  867.   char s[256];
  868.   sprintf(s,"%d",(int) i);
  869.   return cache_wstr(fp,s);
  870. }
  871. void cache_rLLint(FILE* fp,LLint* i) {
  872.   char s[256];
  873.   cache_rstr(fp,s);
  874.   sscanf(s,LLintP,i);
  875. }
  876. int cache_wLLint(FILE* fp,LLint i) {
  877.   char s[256];
  878.   sprintf(s,LLintP,(LLint) i);
  879.   return cache_wstr(fp,s);
  880. }
  881. // -- cache --
  882.